home *** CD-ROM | disk | FTP | other *** search
Wrap
/* Copyright (c) Oracle Corporation 1995. All Rights Reserved */ /***************************************************************************** NAME oci72.vrf - V3 version analysis/product configuration script for Windows 95 OCI 7.2 DESCRIPTION This script checks dependencies and environment settings for the installation of Windows 95 OCI 7.2.2 MODIFIED DD-MMM-YY Reason echien 19-APR-95 Creation for Windows 3.1 mclose 19-JUL-95 Adopted from Windows 3.1 and modified for Windows 95 *****************************************************************************/ { /*********************************************************************** Set the VRF-INS script "ratchet" ***********************************************************************/ vrf_ratchet = "7.2.2.3.1"; { doit = execute("%installer_home%\win95.vrf"); } [ 'UNBOUND_VARIABLE: { required_version = product_version(w95instver); temp = explode(required_version,"."); required_version = implode(list(first(temp),first(rest(temp)), first(rest(rest(temp))), first(rest(rest(rest(temp))))),"."); signal('failure,instantiate(nls("instver_too_early1","The version of the Installer currently running is %%installer_version%%. The installation you have chosen requires version %%required_version%% or later. Please run version %%required_version%% or later in order to perform this installation."))); } ] if (doit) { /*********************************************************************** Bind path variables... ************************************************************************/ installing_scripts = nls("installing_scripts", "Installing %%product_label%% Scripts..."); installing_ocifiles = nls("installing_ocifiles", "Installing %%product_label%% Files..."); installing_ocisamples = nls("installing_ocisamples", "Installing %%product_label%% Sample Programs..."); modifying_config = nls("modifying_config", "Modifying Windows 95 Registry..."); registering = nls("registering","Registering %%product_label%%..."); rsf_version_msg = nls("rsf_version_msg","This product requires the installation of Required Support Files 7.2.2.3.0 or later. The Required Support Files that you have installed are earlier than this. Please install Required Support Files 7.2.2.3.0 or later and then proceed with the installation of %%product_label%%."); /*********************************************************************** Return total size of files depending upon which options were selected for installation... ************************************************************************/ return(sum(deinstl,ocifiles,ocisamples) + verify(w95rsf72)); } else { refresh_map_file = FALSE; return(0); } }